NotificationCompatSideChannelService
Abstract service to receive side channel notifications sent from androidx.core.app.NotificationManagerCompat.
To receive side channel notifications, extend this service and register it in your android manifest with an intent filter for the BIND_NOTIFICATION_SIDE_CHANNEL action. Note: you must also have an enabled android.service.notification.NotificationListenerService within your package.
Example AndroidManifest.xml addition:
<service android:name="com.example.NotificationSideChannelService">
<intent-filter>
<action android:name="android.support.BIND_NOTIFICATION_SIDE_CHANNEL" />
</intent-filter>
</service>
Content copied to clipboard